' Test oh am cpr 2021-03-13 using SFunctions evals for print row number
[
	cnt = a[cnt,1]
	jmp gt[cnt,40]
	. line ;cnt;.
]
sum = a[1,2,3,4,5]
' telling cpr to Center Print a Message on a calculated Row
' on row int(5/2) = 2
cpr int[d[5,2]];Please note in following text part of line the square brackets were replaced by ().

' on row sum = 15 mod 4 = 3 + 2 = 5
cpr a[m[sum,4],2];This row should be centered on line 3+2 with sum of a(1,2,3,4,5) = ;sum

' on row 2^5 = 32
cpr p[2,5];Line 32? OK looks like cpr is working OK with SFunctions for row or line number.

'on row 15
cpr sum;And this line tests working with just a variable value sum = ;sum

' This worked so nice I converted all print commands to handle SFFunctions!